home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- startTimer()
- songUpdate()
- end
-
- on songUpdate
- if not soundBusy(1) then
- startNewsong()
- end if
- end
-
- on startNewsong
- global gSong
- if (gSong < 1) or (gSong > 5) then
- set gSong to 5
- end if
- set songs to list("one.aif", "two.aif", "three.aif", "four.aif")
- if gSong = 5 then
- set randomSong to random(4)
- puppetSound(getAt(songs, randomSong))
- else
- puppetSound(getAt(songs, gSong))
- end if
- end
-